home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- final class Collections$1 implements Enumeration<T> {
- // $FF: renamed from: i java.util.Iterator
- Iterator<T> field_0;
- // $FF: synthetic field
- final Collection val$c;
-
- Collections$1(Collection var1) {
- this.val$c = var1;
- this.field_0 = this.val$c.iterator();
- }
-
- public boolean hasMoreElements() {
- return this.field_0.hasNext();
- }
-
- public T nextElement() {
- return (T)this.field_0.next();
- }
- }
-